home *** CD-ROM | disk | FTP | other *** search
/ The Atari Compendium / The Atari Compendium (Toad Computers) (1994).iso / files / prgtools / programm.ing / ams__l~1.zoo / src / ca_unpac.h < prev    next >
Encoding:
C/C++ Source or Header  |  1993-09-05  |  1.1 KB  |  29 lines

  1. //////////////////////////////////////////////////////////////////////////////
  2. //
  3. //  This file is part of the Atari Machine Specific Library,
  4. //  and is Copyright 1992 by Warwick W. Allison.
  5. //
  6. //  You are free to copy and modify these sources, provided you acknoledge
  7. //  the origin by retaining this notice, and adhere to the conditions
  8. //  described in the file COPYING.
  9. //
  10. //////////////////////////////////////////////////////////////////////////////
  11.  
  12. /****************************************************\
  13.  *                                                  *
  14.  *  CrackArt file decompressor.                     *
  15.  *                                                  *
  16.  *  by Warwick Allison, May 8th 1992.               *
  17.  *                                                  *
  18. \****************************************************/
  19. #ifndef ca_unpac_h
  20. #define ca_unpac_h
  21.  
  22. #include <stdio.h>
  23.  
  24. void LoadCrackArtData(unsigned char* To, int nel, FILE* f);
  25. // Unpack the given amount of data from the data section of a CrackArt
  26. // file to the given location.  'nel' will normally be 32000.
  27.  
  28. #endif
  29.